home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / contrib / windows / test / makefile next >
Encoding:
Makefile  |  1992-05-31  |  125 b   |  8 lines

  1. CFLAGS = -O -I../inc
  2.  
  3. test : test.o ../lib/libw.a
  4.     gcc $(CFLAGS) $^ -o $@ -lpc
  5.  
  6. test.o : test.cc
  7.     gcc $(CFLAGS) -c $^
  8.